home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / SUBVBX.ZIP / MAINFRM.CPP < prev    next >
C/C++ Source or Header  |  1993-04-29  |  1KB  |  58 lines

  1. // mainfrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "subvbx.h"
  6.  
  7. #include "mainfrm.h"
  8.  
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char BASED_CODE THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMainFrame
  16.  
  17. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  18.  
  19. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  20.     //{{AFX_MSG_MAP(CMainFrame)
  21.         // NOTE - the ClassWizard will add and remove mapping macros here.
  22.         //    DO NOT EDIT what you see in these blocks of generated code !
  23.     //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25.  
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainFrame construction/destruction
  29.  
  30. CMainFrame::CMainFrame()
  31. {
  32.     // TODO: add member initialization code here
  33. }
  34.  
  35. CMainFrame::~CMainFrame()
  36. {
  37. }
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CMainFrame diagnostics
  42.  
  43. #ifdef _DEBUG
  44. void CMainFrame::AssertValid() const
  45. {
  46.     CFrameWnd::AssertValid();
  47. }
  48.  
  49. void CMainFrame::Dump(CDumpContext& dc) const
  50. {
  51.     CFrameWnd::Dump(dc);
  52. }
  53.  
  54. #endif //_DEBUG
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CMainFrame message handlers
  58.